home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if "%1" == "" goto error
- if not exist quote.%1 goto notfound
- if not exist labor.%1 goto notfound
- if not exist labrgrp.%1 goto notfound
- echo The following 3 State Files are being copied . . .
- copy quote.%1 quote.mem
- copy labor.%1 labor.dbf
- copy labrgrp.%1 labrgrp.ntx
- quote
- goto exit
- :notfound
- echo One or more of the QUOTE.%1, LABOR.%1 or LABRGRP.%1 files is/are missing.
- goto exit
- :error
- cls
- echo You did not enter the 2 character State Code. Please review Appendix C of
- echo the QUOTE.DOC file. Please read Appendix C and try again.
- :exit